home *** CD-ROM | disk | FTP | other *** search
/ Clipper Collection / Clipper Collection.iso / clipper7 / clipwind.arc / WCONVERT.DOC < prev    next >
Text File  |  1988-03-14  |  2KB  |  60 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.                              Wconvert Version 1.0
  10.                                 By Jim Holley
  11.                               Copyright (C) 1988
  12.  
  13.  
  14.         This document describes the usage of the Wconvert utility provided
  15.      with the Summer '87 version of Windows For Clipper. 
  16.  
  17.  
  18.         What is Wconvert ? 
  19.  
  20.         Wconvert is a utility that will convert your Autumn '86 Clipper source
  21.      code that calls the Windows For Clipper library functions to the calling
  22.      syntax required by the Summer '87 version of the library. The utility is
  23.      very simple and straight forward in it use. 
  24.  
  25.         All functions in the Windows For Clipper library are now prefixed 
  26.      with an underscore character. Wconvert will apply this prefix on any
  27.      Windows For Clipper function calls in your source files. 
  28.  
  29.  
  30.  
  31.         To use Wconvert, follow these simple instructions:
  32.  
  33.                C:> Wconvert [source file name]
  34.         
  35.         Where [source file name] is the name of one of your source files 
  36.      containing Windows For Clipper function calls. 
  37.  
  38.         Using this calling syntax, Wconvert will read the source file and send
  39.      all output to the screen. You can do this to see what Wconvert does to 
  40.      your source code. When you feel comfortable that Wconvert is not going
  41.      to destroy your masterpiece, you should run it again in the following
  42.      manner:
  43.  
  44.               C:> Wconvert [source file name] >[destination file name]
  45.  
  46.         Where [source file name] is the name of your source file. The '>'
  47.      is the DOS redirection operator, and [destination file name] is the
  48.      name of the destination file the output will be sent to. Wconvert 
  49.      uses DOS redirection to create the converted source file. 
  50.  
  51.         The destination file name should ALWAYS be different than the source
  52.      file name. DOS may truncate the file if both names are the same, before
  53.      Wconvert gets a chance to read it and will result in losing the entire
  54.      contents of the file. 
  55.   
  56.         For more information on DOS redirection, please refer to your DOS
  57.      manual.
  58.  
  59. End Of Document
  60.